home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.MDIForm frmFrame
- BackColor = &H8000000C&
- ClientHeight = 3675
- ClientLeft = 165
- ClientTop = 735
- ClientWidth = 5295
- LinkTopic = "MDIForm1"
- StartUpPosition = 3 'Windows Default
- Begin VB.Menu mnuFile
- Caption = "File"
- Begin VB.Menu mnuAudio
- Caption = "Audio player"
- End
- Begin VB.Menu mnnExit
- Caption = "Exit"
- End
- End
- Attribute VB_Name = "frmFrame"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- ' Frame.frm
- Option Explicit
- Private Sub MDIForm_Load()
- Me.WindowState = 2
- frmAudioPlayer.Show
- End Sub
- Private Sub mnuAudio_Click()
- frmAudioPlayer.Show
- End Sub
- Private Sub mnnExit_Click()
- End
- End Sub
-